home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / win / afxvbx.zip / APP.RC < prev    next >
Text File  |  1992-01-10  |  794b  |  35 lines

  1. /* hello.rc : Defines the resources for the Hello application.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and Microsoft
  9. // QuickHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. */
  13.  
  14. #include <windows.h>
  15. #include <afxres.h>
  16. #include "resource.h"
  17.  
  18. AFX_IDI_STD_FRAME   ICON    hello.ico
  19.  
  20. MainMenu MENU
  21. {
  22.     POPUP        "&Help"
  23.     {
  24.         MENUITEM "&About Hello...\tF1", IDM_ABOUT
  25.     }
  26. }
  27.  
  28. MainAccelTable ACCELERATORS
  29. {
  30.     VK_F1,      IDM_ABOUT,  VIRTKEY
  31. }
  32.  
  33. rcinclude hello.dlg
  34.  
  35.